当前位置: 首页> 函数类别大全> date_parse_from_format

date_parse_from_format

获取有关根据指定格式格式化的给定日期的信息
名称:date_parse_from_format
分类:日期和时间
所属语言:php
一句话介绍:根据指定的格式返回带有关于指定日期的详细信息的关联数组。

定义和用法

date_parse_from_format() 函数根据指定的格式返回包含指定日期信息的关联数组。

实例

根据指定的格式返回一个包含指定日期信息的关联数组:

<?php
print_r(date_parse_from_format("mmddyyyy","05122013"));
?>

亲自试一试

语法

date_parse_from_format(format,date);
参数 描述
format 必需。规定格式(date_create_from_format() 接受的格式)。
date 必需。指定日期,字符串值。
同类函数
热门文章